div .glow-div {
    margin-top: 29px;
    width: 95%;
    height: auto;
    background-color: transparent;
    border: 10px transparent;
    margin-bottom: 13px;
}

.glow {
    margin-top: 14px;
    margin-bottom: 14px;
    font-family: cursive;
    font-size: 80px;
    color:#EDB94A;
    text-align: center;
    animation: glow 1s ease-in-out infinite alternate;

}

@-webkit-keyframes glow {
    from {
        text-shadow: 0 0 10px #fff, 0 0 20px #CF9A32, 0 0 30px #CF9A32, 0 0 40px #CF9A32, 0 0 50px #CF9A32, 0 0 60px #CF9A32, 0 0 70px #CF9A32;
    }
    to {
        text-shadow: 0 0 20px #9E895B, 0 0 30px #9E895B, 0 0 40px #9E895B, 0 0 50px #9E895B, 0 0 60px #9E895B, 0 0 70px #9E895B, 0 0 80px #9E895B;
    }
}